home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funcmdta.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  502 b   |  24 lines

  1. /*
  2. \funcref{fun\_cmd\_tail}{void fun\_cmd\_tail ()}
  3.     {}
  4.     {}
  5.     {setstring()}
  6.     {fun\_arg\_tail(), fun\_arg\_head()}
  7.     {funcmdte.c}
  8.     {
  9.  
  10.         This function is called when an {\em op\_cmd\_tail} opcode is read in
  11.         the binary makefile. The {\em cmdtail} variable is set to a duplicate
  12.         of the string in the last pushed variable. The last pushed variable is
  13.         then discarded.
  14.  
  15.     }
  16. */
  17.  
  18. #include "icm-exec.h"
  19.  
  20. void fun_cmd_tail ()
  21. {
  22.     cmdtail = setstring (cmdtail);
  23. }
  24.